@charset "UTF-8";
/*
  Project: Escapist Reality
  Author: xfive
 */
/* Fonts
   ========================================================================== */
/* Breakpoints
   ========================================================================== */
/* Colors
   ========================================================================== */
/* ==========================================================================
   #BOX-SIZING
   ========================================================================== */
/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* ==========================================================================
   #FONT-FACE
   ========================================================================== */
/**
 * Add font-display: swap to font-face blocks here
 * https://www.zachleat.com/web/comprehensive-webfonts/#font-display
 */
/* ==========================================================================
   #NORMALIZE
   ========================================================================== */
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Correct the line height in all browsers.
     * 2. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
       ========================================================================== */
/**
     * Remove the margin in all browsers (opinionated).
     */
body {
  margin: 0;
}

/**
     * Add the correct display in IE 9-.
     */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
     * Correct the font size and margin on `h1` elements within `section` and
     * `article` contexts in Chrome, Firefox, and Safari.
     */
h1, .c-post__title {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
figcaption,
figure {
  display: block;
}

/**
     * Add the correct margin in IE 8.
     */
figure {
  margin: 1em 40px;
}

/**
     * 1. Add the correct box sizing in Firefox.
     * 2. Show the overflow in Edge and IE.
     */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Links
       ========================================================================== */
/**
     * 1. Remove the gray background on active links in IE 10.
     * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
     */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/* Text-level semantics
       ========================================================================== */
/**
     * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
     * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
     */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
     * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
     */
b,
strong {
  font-weight: inherit;
}

/**
     * Add the correct font weight in Chrome, Edge, and Safari.
     */
b,
strong {
  font-weight: bolder;
}

/**
     * 1. Correct the inheritance and scaling of font size in all browsers.
     * 2. Correct the odd `em` font sizing in all browsers.
     */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
     * Add the correct font style in Android 4.3-.
     */
dfn {
  font-style: italic;
}

/**
     * Add the correct background and color in IE 9-.
     */
mark {
  background-color: #ff0;
  color: #000;
}

/**
     * Add the correct font size in all browsers.
     */
small {
  font-size: 80%;
}

/**
     * Prevent `sub` and `sup` elements from affecting the line height in
     * all browsers.
     */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
audio,
video {
  display: inline-block;
}

/**
     * Add the correct display in iOS 4-7.
     */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
     * Remove the border on images inside links in IE 10-.
     */
img {
  border-style: none;
}

/**
     * Hide the overflow in IE.
     */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
       ========================================================================== */
/**
     * 1. Change the font styles in all browsers (opinionated).
     * 2. Remove the margin in Firefox and Safari.
     */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible;
}

/**
     * Remove the inheritance of text transform in Edge, Firefox, and IE.
     * 1. Remove the inheritance of text transform in Firefox.
     */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
     * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
     *    controls in Android 4.
     * 2. Correct the inability to style clickable types in iOS and Safari.
     */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

/**
     * 1. Add the correct box sizing in IE 10-.
     * 2. Remove the padding in IE 10-.
     */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
     * Correct the cursor style of increment and decrement buttons in Chrome.
     */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
     * 1. Correct the inability to style clickable types in iOS and Safari.
     * 2. Change font properties to `inherit` in Safari.
     */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
     * Correct the padding in Firefox.
     */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
     * 1. Correct the text wrapping in Edge and IE.
     * 2. Correct the color inheritance from `fieldset` elements in IE.
     * 3. Remove the padding so developers are not caught out when they zero out
     *    `fieldset` elements in all browsers.
     */
legend {
  box-sizing: border-box;
  /* 1 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  color: inherit;
  /* 2 */
  white-space: normal;
  /* 1 */
}

/**
     * 1. Add the correct display in IE 9-.
     * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
     */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
     * Remove the default vertical scrollbar in IE.
     */
textarea {
  overflow: auto;
}

/* Interactive
       ========================================================================== */
/*
     * Add the correct display in Edge, IE, and Firefox.
     */
details {
  display: block;
}

/*
     * Add the correct display in all browsers.
     */
summary {
  display: list-item;
}

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

/* Scripting
       ========================================================================== */
/**
     * Add the correct display in IE 9-.
     */
canvas {
  display: inline-block;
}

/**
     * Add the correct display in IE.
     */
template {
  display: none;
}

/* Hidden
       ========================================================================== */
/**
     * Add the correct display in IE 10-.
     */
[hidden] {
  display: none;
}

/* ==========================================================================
   #RESET
   ========================================================================== */
/**
 * A very simple reset that sits on top of Normalize.css.
 */
body, h1, .c-post__title, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}

/**
 * Remove trailing margins from nested lists.
 */
li > ol,
li > ul {
  margin-bottom: 0;
}

/**
 * Remove default table spacing.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

/* ==========================================================================
   #SHARED
   ========================================================================== */
/**
 * Shared declarations for certain elements.
 */
/**
 * Always declare margins in the same direction:
 * csswizardry.com/2012/06/single-direction-margin-declarations
 */
address, h1, .c-post__title, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, ol, ul,
figure,
hr,
table,
fieldset {
  margin-bottom: 0.625rem;
}

/**
 * Consistent indentation for lists.
 */
dd, ol, ul {
  margin-left: 1rem;
}

/* ==========================================================================
   #BLOCKQUOTES
   ========================================================================== */
blockquote {
  quotes: '“' '”' '‘' '’';
  font-style: italic;
}

blockquote p:first-child:before {
  content: open-quote;
}

blockquote p:last-child:after {
  content: close-quote;
}

/* ==========================================================================
   #HEADINGS
   ========================================================================== */
/**
 * Simple default styles for headings 1 through 6. Anything more opinionated
 * than simple font-size changes should likely be applied via classes (see:
 * http://csswizardry.com/2016/02/managing-typography-on-large-apps/).
 */
h1, .c-post__title, h2, h3, h4, h5, h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 1.25;
  color: #333333;
}

h1, .c-post__title {
  font-size: 1.875em;
}

@media (min-width: 480px) {
  h1, .c-post__title {
    font-size: 2.125em;
  }
}

@media (min-width: 1024px) {
  h1, .c-post__title {
    font-size: 2.5em;
  }
}

h2 {
  font-size: 2.125em;
}

h3 {
  font-size: 1.25em;
}

@media (min-width: 480px) {
  h3 {
    font-size: 1.5em;
  }
}

h4 {
  font-size: 1.25em;
}

h5 {
  font-size: 1.125em;
}

h6 {
  font-size: 1em;
}

/* ==========================================================================
   #HR
   ========================================================================== */
hr {
  display: block;
}

/* ==========================================================================
   #PAGE
   ========================================================================== */
/**
 * Simple page-level setup.
 *
 * 1. Set the default `font-size` and `line-height` for the entire project.
 * 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
 *    navigating between pages that do/do not have enough content to produce
 *    scrollbars naturally.
 * 3. Ensure the page always fills at least the entire height of the viewport.
 */
html {
  background: #fff;
  color: #555857;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  /* [1] */
  line-height: 1.875;
  /* [1] */
  min-height: 100%;
  /* [3] */
  overflow-y: scroll;
  /* [2] */
  padding: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  font-size: 0.875rem;
  /* 14px */
}

@media (min-width: 768px) {
  body {
    font-size: 0.9375rem;
    /* 15px */
  }
}

@media (min-width: 1280px) {
  body {
    font-size: 1rem;
    /* 16px */
  }
}

/* ==========================================================================
   #IMAGES
   ========================================================================== */
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 */
img {
  font-style: italic;
  /* [2] */
  max-width: 100%;
  /* [1] */
  vertical-align: middle;
  /* [3] */
}

/**
 * 1. If a `width` and/or `height` attribute have been explicitly defined, let’s
 *    not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/* ==========================================================================
   #LINKS
   ========================================================================== */
a {
  color: #818584;
  text-decoration: none;
}

a:hover {
  color: #818584;
  text-decoration: underline;
}

/* ==========================================================================
   #LISTS
   ========================================================================== */
li {
  margin-bottom: 0.4rem;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1rem;
  margin-top: 0.4rem;
}

dt {
  font-weight: bold;
}

dd {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

/* ==========================================================================
   #TABLES
   ========================================================================== */
/**
 * 1. Ensure tables fill up as much space as possible.
 */
table {
  width: 100%;
  /* [1] */
}

/* ==========================================================================
   #LAYOUT
   ========================================================================== */
/* Simple flexbox layout system */
.o-layout {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
}

.o-layout--auto {
  width: auto;
}

.o-layout--nowrap {
  flex-wrap: nowrap;
}

.o-layout--gutless {
  width: auto;
  margin-left: -15px;
  margin-right: -15px;
}

.o-layout--guttered {
  justify-content: space-between;
}

.o-layout--guttered > .o-layout__item {
  flex: none;
}

.o-layout__item {
  flex: 1;
  padding: 0 10px;
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .o-layout__item {
    padding: 0 15px;
  }
}

.o-layout__item--gutless {
  padding: 0;
}

.o-layout__item--auto {
  flex: 1 0 auto;
  width: auto;
  flex-basis: auto;
}

.o-layout__item--1 {
  width: 8.33333%;
  max-width: 8.33333%;
  flex-basis: 8.33333%;
}

.o-layout__item--2 {
  width: 16.66667%;
  max-width: 16.66667%;
  flex-basis: 16.66667%;
}

.o-layout__item--3 {
  width: 25%;
  max-width: 25%;
  flex-basis: 25%;
}

.o-layout__item--4 {
  width: 33.33333%;
  max-width: 33.33333%;
  flex-basis: 33.33333%;
}

.o-layout__item--5 {
  width: 41.66667%;
  max-width: 41.66667%;
  flex-basis: 41.66667%;
}

.o-layout__item--6 {
  width: 50%;
  max-width: 50%;
  flex-basis: 50%;
}

.o-layout__item--7 {
  width: 58.33333%;
  max-width: 58.33333%;
  flex-basis: 58.33333%;
}

.o-layout__item--8 {
  width: 66.66667%;
  max-width: 66.66667%;
  flex-basis: 66.66667%;
}

.o-layout__item--9 {
  width: 75%;
  max-width: 75%;
  flex-basis: 75%;
}

.o-layout__item--10 {
  width: 83.33333%;
  max-width: 83.33333%;
  flex-basis: 83.33333%;
}

.o-layout__item--11 {
  width: 91.66667%;
  max-width: 91.66667%;
  flex-basis: 91.66667%;
}

.o-layout__item--12 {
  width: 100%;
  max-width: 100%;
  flex-basis: 100%;
}

@media (min-width: 480px) {
  .o-layout__item--small-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .o-layout__item--small-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .o-layout__item--small-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .o-layout__item--small-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .o-layout__item--small-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .o-layout__item--small-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .o-layout__item--small-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .o-layout__item--small-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .o-layout__item--small-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .o-layout__item--small-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .o-layout__item--small-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .o-layout__item--small-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (min-width: 768px) {
  .o-layout__item--medium-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .o-layout__item--medium-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .o-layout__item--medium-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .o-layout__item--medium-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .o-layout__item--medium-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .o-layout__item--medium-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .o-layout__item--medium-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .o-layout__item--medium-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .o-layout__item--medium-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .o-layout__item--medium-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .o-layout__item--medium-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .o-layout__item--medium-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (min-width: 1024px) {
  .o-layout__item--large-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .o-layout__item--large-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .o-layout__item--large-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .o-layout__item--large-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .o-layout__item--large-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .o-layout__item--large-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .o-layout__item--large-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .o-layout__item--large-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .o-layout__item--large-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .o-layout__item--large-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .o-layout__item--large-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .o-layout__item--large-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (min-width: 1280px) {
  .o-layout__item--xlarge-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .o-layout__item--xlarge-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .o-layout__item--xlarge-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .o-layout__item--xlarge-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .o-layout__item--xlarge-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .o-layout__item--xlarge-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .o-layout__item--xlarge-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .o-layout__item--xlarge-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .o-layout__item--xlarge-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .o-layout__item--xlarge-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .o-layout__item--xlarge-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .o-layout__item--xlarge-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

@media (min-width: 1600px) {
  .o-layout__item--full-1 {
    width: 8.33333%;
    max-width: 8.33333%;
    flex-basis: 8.33333%;
  }
  .o-layout__item--full-2 {
    width: 16.66667%;
    max-width: 16.66667%;
    flex-basis: 16.66667%;
  }
  .o-layout__item--full-3 {
    width: 25%;
    max-width: 25%;
    flex-basis: 25%;
  }
  .o-layout__item--full-4 {
    width: 33.33333%;
    max-width: 33.33333%;
    flex-basis: 33.33333%;
  }
  .o-layout__item--full-5 {
    width: 41.66667%;
    max-width: 41.66667%;
    flex-basis: 41.66667%;
  }
  .o-layout__item--full-6 {
    width: 50%;
    max-width: 50%;
    flex-basis: 50%;
  }
  .o-layout__item--full-7 {
    width: 58.33333%;
    max-width: 58.33333%;
    flex-basis: 58.33333%;
  }
  .o-layout__item--full-8 {
    width: 66.66667%;
    max-width: 66.66667%;
    flex-basis: 66.66667%;
  }
  .o-layout__item--full-9 {
    width: 75%;
    max-width: 75%;
    flex-basis: 75%;
  }
  .o-layout__item--full-10 {
    width: 83.33333%;
    max-width: 83.33333%;
    flex-basis: 83.33333%;
  }
  .o-layout__item--full-11 {
    width: 91.66667%;
    max-width: 91.66667%;
    flex-basis: 91.66667%;
  }
  .o-layout__item--full-12 {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* ==========================================================================
   #LIST-BARE
   ========================================================================== */
/**
 * Strip list-like appearance from lists by removing their bullets, and any
 * indentation.
 */
.o-list-bare {
  list-style: none;
  margin-left: 0;
}

/* ==========================================================================
   #LIST-INLINE
   ========================================================================== */
/**
 * The list-inline object simply displays a list of items in one line.
 */
.o-list-inline {
  list-style: none;
  margin-left: 0;
}

.o-list-inline__item {
  display: inline-block;
}

/* ==========================================================================
   #MEDIA
   ========================================================================== */
/**
 * Place any image- and text-like content side-by-side, as per:
 * http://www.stubbornella.org/content/2010/06/25/the-media-object-saves-hundreds-of-lines-of-code
 */
.o-media {
  display: block;
}

.o-media:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.o-media__img {
  float: left;
  margin-right: 1rem;
}

.o-media__img > img {
  display: block;
}

.o-media__body {
  display: block;
  overflow: hidden;
}

.o-media__body,
.o-media__body > :last-child {
  margin-bottom: 0;
}

/* Reversed media objects
   ========================================================================== */
.o-media--reverse > .o-media__img {
  float: right;
  margin-left: 1rem;
  margin-right: 0;
}

/* Gutterless media objects
   ========================================================================== */
.o-media--flush > .o-media__img {
  margin-left: 0;
  margin-right: 0;
}

/* ==========================================================================
   #TABLE
   ========================================================================== */
/**
 * A simple object for manipulating the structure of HTML `table`s.
 */
.o-table {
  width: 100%;
}

/* Equal-width table cells.
   ========================================================================== */
/**
 * `table-layout: fixed` forces all cells within a table to occupy the same
 * width as each other. This also has performance benefits: because the browser
 * does not need to (re)calculate cell dimensions based on content it discovers,
 * the table can be rendered very quickly. Further reading:
 * https://developer.mozilla.org/en-US/docs/Web/CSS/table-layout#Values
 */
.o-table--fixed {
  table-layout: fixed;
}

/* ==========================================================================
   #WRAPPER
   ========================================================================== */
/**
 * Page-level constraining and wrapping elements.
 */
.o-wrapper {
  max-width: 2048px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.o-wrapper:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

.o-wrapper__inner {
  position: relative;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .o-wrapper__inner {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .o-wrapper__inner {
    max-width: 1170px;
  }
}

.c-blog-posts {
  justify-content: center;
}

.c-blog-item {
  margin-bottom: 10px;
  background-color: #f3f4f8;
  border-radius: 5px;
  transition: all 300ms ease-in-out;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
}

@media (min-width: 480px) {
  .c-blog-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 479.98px) {
  .c-blog-item {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

.c-blog-item:hover {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.c-blog-item__info {
  padding: 15px 20px;
}

@media (min-width: 768px) {
  .c-blog-item__info {
    padding: 25px 30px 25px;
  }
}

@media (min-width: 1024px) {
  .c-blog-item__info {
    padding: 29px 35px 30px;
  }
}

.c-blog-item__title {
  margin: 0 0 15px;
}

@media (min-width: 768px) {
  .c-blog-item__title {
    margin: 0 0 25px;
  }
}

.c-blog-item__category {
  margin: 0;
  text-decoration: underline;
  transition: all 300ms ease-in-out;
}

.c-blog-latest__item:hover .c-blog-item__category,
.c-blog-item:hover .c-blog-item__category {
  color: #333333;
}

.c-blog-item__link:hover,
.c-blog-latest__link:hover {
  text-decoration: none;
}

.c-blog-latest {
  margin-bottom: 30px;
}

.c-blog-latest__heading {
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
}

.c-blog-latest__item {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #f3f4f8;
  border-radius: 5px;
  transition: all 300ms ease-in-out;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0);
}

.c-blog-latest__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 479.98px) {
  .c-blog-latest__item {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .c-blog-latest__item {
    padding: 20px;
  }
}

.c-blog-latest__item:hover {
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.c-blog-latest__title {
  margin-top: 0;
}

/* ==========================================================================
   #BUTTONS
   ========================================================================== */
/**
 * This is an example component. Extend inuitcss by building your own components
 * that make up your UI. Component classes are prefixed with a `c-`.
 */
/**
 * 1. Allow us to style box model properties.
 * 2. Line different sized buttons up a little nicer.
 * 3. Make buttons inherit font styles (often necessary when styling `input`s as
 *    buttons).
 * 4. Reset/normalize some styles.
 * 5. Force all button-styled elements to appear clickable.
 */
.c-btn {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font: inherit;
  /* [3] */
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  /* [4] */
  text-transform: uppercase;
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  padding: 10px 30px;
  transition: all 300ms ease-in-out;
  color: #fff;
  text-decoration: none;
  /* [4] */
  border: none;
  outline: none;
  border-radius: 30px;
}

@media (min-width: 768px) {
  .c-btn {
    padding: 12px 35px;
  }
}

@media (min-width: 1024px) {
  .c-btn {
    padding: 15px 40px;
  }
}

@media (min-width: 1280px) {
  .c-btn {
    padding: 17px 45px;
  }
}

.c-btn:hover, .c-btn:focus, .c-btn:active {
  color: #fff;
  text-decoration: none;
  /* [4] */
}

/* Style variants
   ========================================================================== */
.c-btn--primary {
  background: linear-gradient(#005e36, #118d58);
  box-shadow: 3px 4px 15px 0 rgba(15, 130, 81, 0.3);
}

.c-btn--primary:hover, .c-btn--primary:focus, .c-btn--primary:active {
  background: linear-gradient(#118d58, #005e36);
}

.c-btn--submit {
  margin-top: 5px;
  color: #005e36;
  background-color: #fff;
}

@media (min-width: 768px) {
  .c-btn--submit {
    margin-top: 15px;
  }
}

.c-btn--submit:hover, .c-btn--submit:focus, .c-btn--submit:active {
  color: #fff;
  background-color: #005e36;
}

/* Size variants
   ========================================================================== */
.c-btn--small {
  padding: 0.25rem 0.5rem;
}

.c-btn--large {
  padding: 0.75rem 1.5rem;
}

.c-cert-image {
  position: relative;
  padding-top: 40px;
  padding-bottom: 75px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .c-cert-image {
    padding-top: 20px;
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .c-cert-image {
    padding-top: 40px;
    padding-bottom: 75px;
    margin-bottom: 30px;
  }
}

.c-cert-image:after {
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  display: block;
  height: 9px;
  content: '';
  background-image: url("../assets/images/line-separator.png");
  background-repeat: no-repeat;
  background-position: center center;
}

.c-cert-partner {
  padding-top: 15px;
  padding-bottom: 15px;
  justify-content: center;
}

.c-cert-partner__inner {
  background-color: #00a1e1;
}

.c-cert-partner__description {
  margin: 0;
  padding: 10px 23px;
  color: #fff;
  font-weight: 400;
}

.c-content {
  padding: 40px 0;
}

@media (min-width: 1024px) {
  .c-content {
    padding: 60px 0 50px;
  }
}

@media (min-width: 1280px) {
  .c-content {
    padding: 90px 0 70px;
  }
}

.c-content.c-team {
  padding-bottom: 10px;
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
.c-footer {
  min-height: 675px;
  background-image: url("../assets/images/footer-bg-mobile.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
}

@media (min-width: 768px) {
  .c-footer {
    background-size: auto 100%;
    background-image: url("../assets/images/footer-bg.png");
    background-position: bottom center;
  }
}

.c-footer--left {
  order: 2;
  padding-top: 0;
  text-align: center;
}

@media (min-width: 768px) {
  .c-footer--left {
    order: 0;
    padding-top: 190px;
    text-align: left;
  }
}

.c-footer--right {
  padding-top: 270px;
}

@media (min-width: 768px) {
  .c-footer--right {
    padding-top: 310px;
  }
}

@media (min-width: 1024px) {
  .c-footer--right {
    padding-top: 350px;
  }
}

@media (max-width: 767.98px) {
  .c-footer--right .u-text-right {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .c-footer .c-form .o-layout__item {
    padding-left: 0;
    padding-right: 0;
  }
}

.c-footer__heading {
  color: #fff;
}

@media (max-width: 767.98px) {
  .c-footer__heading {
    text-align: center;
  }
}

.c-footer-contact {
  width: 100%;
  max-width: 350px;
  margin: 25px auto 0;
  padding: 0;
  list-style-type: none;
  text-align: left;
}

.c-footer-contact .c-icon {
  margin-right: 0;
}

@media (min-width: 480px) {
  .c-footer-contact .c-icon {
    margin-right: 5px;
  }
}

@media (min-width: 768px) {
  .c-footer-contact {
    max-width: 100%;
    margin: 45px 0 0;
  }
  .c-footer-contact .c-icon {
    margin-right: 15px;
  }
}

.c-footer-contact__link {
  color: #fff;
  word-break: break-all;
}

.c-footer-contact__link:hover, .c-footer-contact__link:focus {
  color: #fff;
}

.c-footer-logo {
  margin-right: 10px;
}

.c-footer-copyright {
  display: flex;
  align-items: center;
  margin-top: 25px;
  margin-bottom: 25px;
  justify-content: center;
}

@media (min-width: 768px) {
  .c-footer-copyright {
    margin-top: 25px;
    margin-bottom: 0;
    justify-content: flex-start;
  }
}

.c-footer-copyright__text {
  margin: 0;
  color: #fff;
}

.c-form {
  width: 100%;
}

.c-form-group {
  padding: 12px 0;
}

.c-form-control {
  display: block;
  width: 100%;
  background-color: transparent;
  padding: 15px 25px;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #a7c5b8;
  transition: all 300ms ease-in-out;
  background-repeat: no-repeat;
  background-position: left center;
}

.c-form-control:-moz-placeholder {
  color: #a7c5b8;
}

.c-form-control::-moz-placeholder {
  color: #a7c5b8;
}

.c-form-control:-ms-input-placeholder {
  color: #a7c5b8;
}

.c-form-control::-webkit-input-placeholder {
  color: #a7c5b8;
}

.c-form-control:hover, .c-form-control:focus {
  border-bottom: 1px solid white;
}

.c-form-control--user {
  background-image: url("../assets/images/icons/user.png");
}

.c-form-control--phone {
  background-image: url("../assets/images/icons/phone.png");
}

.c-form-control--envelope {
  background-image: url("../assets/images/icons/envelope.png");
}

.c-form-control--message {
  background-image: url("../assets/images/icons/message.png");
}

textarea.c-form-control {
  height: 65px;
  padding-top: 0;
  background-position: left top;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #a7c5b8 !important;
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
.c-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 10px 0;
  align-items: center;
}

@media (min-width: 1024px) {
  .c-header {
    padding: 20px 0;
  }
}

.c-header__logo {
  max-width: 180px;
}

@media (min-width: 480px) {
  .c-header__logo {
    max-width: 220px;
  }
}

@media (min-width: 768px) {
  .c-header__logo {
    max-width: 100%;
  }
}

.c-hero {
  position: relative;
  height: 300px;
  padding: 60px 0;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  background-color: #dfebe7;
}

@media (min-width: 768px) {
  .c-hero {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .c-hero {
    padding: 100px 0;
    height: 500px;
  }
}

@media (min-width: 1280px) {
  .c-hero {
    height: 584px;
  }
}

.c-hero:after {
  position: absolute;
  z-index: 3;
  bottom: -1px;
  left: 0;
  right: 0;
  display: block;
  content: '';
  width: 100%;
  height: 94px;
  background-image: url("../assets/images/curve-hero.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom center;
}

@media (min-width: 1280px) {
  .c-hero:after {
    bottom: 0;
    background-size: auto;
  }
}

.c-hero--home {
  height: 400px;
  background-image: url("../assets/images/hero-home.png");
}

@media (min-width: 768px) {
  .c-hero--home {
    height: 500px;
  }
}

@media (min-width: 1024px) {
  .c-hero--home {
    height: 630px;
  }
}

@media (min-width: 1280px) {
  .c-hero--home {
    height: 774px;
  }
}

.c-hero--team {
  padding: 60px 0;
  background-image: url("../assets/images/hero-team.png");
}

@media (min-width: 480px) {
  .c-hero--team {
    padding: 60px 0 130px;
  }
}

@media (min-width: 1280px) {
  .c-hero--team {
    padding: 100px 0 170px;
  }
}

.c-hero--about_us {
  padding: 60px 0;
  background-image: url("../assets/images/hero-about-us.png");
}

@media (min-width: 480px) {
  .c-hero--about_us {
    padding: 60px 0 130px;
  }
}

@media (min-width: 1280px) {
  .c-hero--about_us {
    padding: 100px 0 170px;
  }
}


.c-hero--cert {
  padding: 60px 0;
  background-image: url("../assets/images/hero-cert.png");
}

@media (min-width: 480px) {
  .c-hero--cert {
    padding: 60px 0 90px;
  }
}

@media (min-width: 1280px) {
  .c-hero--cert {
    padding: 100px 0 150px;
  }
}

.c-hero--blog {
  height: 300px;
  padding: 60px 0 30px;
  background-image: url("../assets/images/hero-blog.png");
}

@media (min-width: 768px) {
  .c-hero--blog {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .c-hero--blog {
    height: 450px;
  }
}

@media (min-width: 1280px) {
  .c-hero--blog {
    height: 495px;
    padding: 100px 0 70px;
  }
}

.c-hero__content {
  position: relative;
  z-index: 4;
  max-width: 700px;
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .c-hero__content {
    max-width: 570px;
  }
}

.c-hero__heading--white {
  color: #fff;
}

.c-hero__subheading {
  text-transform: uppercase;
  color: #016138;
  letter-spacing: 3px;
}

.c-hero__text {
  margin-top: 20px;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .c-hero__text {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.c-icon {
  position: relative;
  top: 1px;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-position: bottom center;
}

@media (min-width: 480px) {
  .c-icon {
    width: 20px;
    height: 20px;
  }
}

.c-icon--envelope {
  background-image: url("../assets/images/icons/envelope.png");
}

.c-icon--phone {
  background-image: url("../assets/images/icons/phone.png");
}

.c-icon--facebook {
  background-image: url("../assets/images/icons/facebook.png");
}

.c-icon--twitter {
  background-image: url("../assets/images/icons/twitter.png");
}

.c-icon--linkedin {
  background-image: url("../assets/images/icons/linkedin.png");
}

.c-icon--search {
  background-image: url("../assets/images/icons/search.png");
}

.c-main-nav {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: white;
  box-shadow: 0 7px 6px -2px rgba(0, 0, 0, 0.2);
}

.c-main-nav.is-open {
  display: flex;
}

@media (min-width: 768px) {
  .c-main-nav {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    box-shadow: none;
  }
}

.c-main-nav__item {
  padding: 5px 20px;
  margin: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .c-main-nav__item {
    padding: 10px 22px;
    text-align: left;
  }
}

.c-main-nav__link {
  text-decoration: none;
  color: #647a71;
  transition: all 300ms ease-in-out;
  letter-spacing: 1px;
}

.c-main-nav__link:hover,
.c-main-nav__item--active .c-main-nav__link {
  color: #016138;
  text-decoration: none;
}

.c-main-nav-toggle {
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .c-main-nav-toggle {
    display: none;
  }
}

.c-main-nav-toggle__btn {
  display: block;
  position: relative;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: #647a71;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  transition: all 300ms ease-in-out;
}

.c-main-nav-toggle__btn:hover {
  background-color: #016138;
}

.c-main-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background-color: #fff;
}

.c-main-nav-toggle__bar + .c-main-nav-toggle__bar {
  margin-top: 4px;
}

.c-post__title {
  text-align: center;
}

@media (min-width: 768px) {
  .c-post__title {
    margin-bottom: 30px;
  }
}

.c-post__thumbnail {
  margin-bottom: 20px;
  text-align: center;
}

.c-post__thumbnail img {
  border-radius: 5px;
}

.c-search-form {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 30px auto 0;
}

@media (min-width: 1024px) {
  .c-search-form {
    max-width: 320px;
    margin: 40px auto 0;
  }
}

@media (min-width: 1280px) {
  .c-search-form {
    max-width: 360px;
    margin: 50px auto 0;
  }
}

.c-search-form__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-search-form__field {
  display: block;
  width: 100%;
  flex-basis: 100%;
  background-color: #fff;
  padding: 15px 60px 15px 25px;
  border: none;
  outline: none;
  transition: all 300ms ease-in-out;
  border-radius: 30px;
}

@media (min-width: 1024px) {
  .c-search-form__field {
    padding: 17px 60px 17px 25px;
  }
}

@media (min-width: 1280px) {
  .c-search-form__field {
    padding: 19px 70px 19px 25px;
  }
}

.c-search-form__button {
  position: absolute;
  right: 0;
  padding: 12px 15px 12px 10px;
  border: none;
  outline: none;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  cursor: pointer;
  background-color: transparent;
}

@media (min-width: 1024px) {
  .c-search-form__button {
    padding: 14px 15px 14px 10px;
  }
}

@media (min-width: 1280px) {
  .c-search-form__button {
    padding: 16px 20px 16px 10px;
  }
}

.c-team-member {
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 1024px) {
  .c-team-member {
    margin-bottom: 60px;
  }
}

.c-team-member__inner {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
}

.c-team-member__image {
  margin-bottom: 20px;
  border-radius: 50%;
  height: 167px;
}

@media (min-width: 1024px) {
  .c-team-member__image {
    margin-bottom: 30px;
  }
}

.c-team-member__name {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
}

.c-team-cat {
  position: absolute;
  right: 0;
  top: -115px;
  left: 0;
  display: none;
}

@media (min-width: 860px) {
  .c-team-cat {
    right: 5px;
    left: auto;
    top: -60px;
    display: block;
  }
}

@media (min-width: 1024px) {
  .c-team-cat {
    right: 0;
    top: -87px;
  }
}

@media (min-width: 1280px) {
  .c-team-cat {
    right: 25px;
    top: -87px;
  }
}

.c-team-cat__inner {
  position: relative;
  width: 270px;
  padding: 15px 20px;
  background-color: #f7faf9;
  border-radius: 5px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .c-team-cat__inner {
    width: 270px;
    padding: 15px 20px;
    margin: 0;
  }
}

@media (min-width: 1024px) {
  .c-team-cat__inner {
    width: 270px;
    padding: 15px 20px;
  }
}

@media (min-width: 1280px) {
  .c-team-cat__inner {
    width: 286px;
    padding: 15px 30px;
  }
}

.c-team-cat__inner:after {
  position: absolute;
  bottom: -24px;
  left: 145px;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 24px solid #f7faf9;
}

@media (min-width: 860px) {
  .c-team-cat__inner:after {
    left: 145px;
  }
}

@media (min-width: 1024px) {
  .c-team-cat__inner:after {
    left: 56px;
  }
}

@media (min-width: 1280px) {
  .c-team-cat__inner:after {
    left: 36px;
  }
}

.c-team-cat__image {
  position: absolute;
  top: 100%;
  left: -83px;
  right: 0;
  margin: 40px auto 0;
}

@media (min-width: 860px) {
  .c-team-cat__image {
    margin: 16px 0 0 100px;
    right: auto;
    left: 0;
  }
}

@media (min-width: 1024px) {
  .c-team-cat__image {
    margin: 45px 0 0 10px;
  }
}

@media (min-width: 1280px) {
  .c-team-cat__image {
    margin: 41px 0 0 -20px;
  }
}

.c-team-cat__name,
.c-team-cat__info {
  margin: 0;
  font-family: "Caveat", cursive;
}

.c-team-cat__name {
  font-weight: 700;
}

.c-team-cat__info {
  font-size: 1.25rem;
  line-height: 1.2;
}

/* ==========================================================================
   #ALIGN
   ========================================================================== */
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-clear {
  clear: both;
}

.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

/* ==========================================================================
   #CLEARFIX
   ========================================================================== */
/**
 * Attach our clearfix mixin to a utility class.
 */
.u-clearfix:after {
  content: '' !important;
  display: block !important;
  clear: both !important;
}

/* ==========================================================================
   #HIDE
   ========================================================================== */
/**
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.u-hidden-visually {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

/**
 * Hide visually and from screen readers.
 */
.u-hidden {
  display: none !important;
}

.u-hidden\@small {
  display: none;
}

@media (min-width: 768px) {
  .u-hidden\@small {
    display: block;
  }
}

@media (min-width: 768px) {
  .u-show-mobile {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .u-hide-mobile {
    display: none;
  }
}

.u-text-large {
  font-size: 1.125rem;
}

@media (min-width: 1024px) {
  .u-text-large {
    font-size: 1.25rem;
  }
}

.u-text-dark {
  color: #333333;
}
